home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / WWW / Perl_WWW_Utilities / total / wwwboard / ADMIN_README next >
Encoding:
Text File  |  1995-11-26  |  6.1 KB  |  130 lines

  1. ###########################################################################
  2. # WWWAdmin README
  3. # Version 2.0 ALPHA 2
  4. # Created by Matt Wright
  5. # Created on:  10/21/95         Last Modified on:  11/25/95
  6. # I can be reached at:          mattw@xtc.net
  7. # Scripts Found at:             http://worldwidemart.com/scripts/
  8. ###########################################################################
  9.  
  10. WWWAdmin is finally here!  I know it used to be a pain to have to maintain 
  11. WWWBoard without a program, so I am currently developing WWWAdmin.  Right 
  12. now it performs the basic functions, which allow you to remove messages and 
  13. change your password.  I will explain each different process and how to set
  14. up this program below.  I will also list some of the features you can expect
  15. in upcoming releases.
  16.  
  17. The variables and options in WWWAdmin should correspond directly to those in 
  18. WWWBoard.  In all except two cases, you can copy the variables out of 
  19. wwwboard.pl and place them in wwwadmin.pl.  There is one new variable in 
  20. wwwadmin.pl and one variable that will need to be changed:
  21.  
  22.     $cgi_url = "http://your.host.xxx/cgi-bin/wwwadmin.pl";
  23.         This variable needs to be changed from the url to 
  24.        wwwboard.pl to the url to wwwadmin.pl.  This may simply mean 
  25.        changing the file name at the end of the url.
  26.  
  27.     $passwd_file = "passwd.txt";
  28.         This is a new variable and simply gives the filename of the 
  29.        password file in relation to $basedir.  So if you place this 
  30.        file in $basedir, you can simply set this variable equal to the 
  31.        filename, which is most commonly passwd.txt
  32. ____________________________________________________________________________
  33.  
  34. RUNNING WWWADMIN.
  35.     WWWAdmin is a self-contained script, in that all you have to do is 
  36.    call the script with a plain url (The url you used in $cgi_url) and it 
  37.    will give you a form which displays all of your options.  The options 
  38.    that are currently available in this release are:
  39.     Remove Messages
  40.     Remove Messages by Date
  41.     Remove Messages by Author
  42.     Remove Messages by Sorted Number
  43.     Change WWWAdmin Password
  44.  
  45. All of these options require you to use a password and username once you 
  46. take the link.  The default username and password for WWWAdmin are:
  47.  
  48. Username: WebAdmin
  49. Password: WebBoard
  50.  
  51. They are case sensitive, so make sure you type them in correctly.  I suggest 
  52. you jump down to the explanation on Changing WWWAdmin Password before 
  53. you make this wwwboard available to the public.  A brief description of 
  54. how each WWWAdmin function works is below:
  55.  
  56. REMOVE MESSAGES
  57. ===============
  58.     When selecting this link, you will be taken to a form which gives you 
  59. the article number, two radio boxes, the subject, author and date that 
  60. the article was posted, for all articles.  The form is put inside of a 
  61. Netscape table, but I have tested it and it also works with lynx (a text 
  62. based browser) so I am sure it will work with others.  You can check the 
  63. radio boxes to the side of the messages that you wish to remove from 
  64. your WWWBoard.  Checking the check box to the left, will remove the 
  65. entire thread, while checking the check box on the right, simply removes 
  66. that single posting, whether it is imbeded in a thread or not.  This 
  67. will also remove the message out of your messages/ directory, and if you 
  68. select to remove the thread, it will remove all messages in that thread 
  69. out of your messages/ directory.
  70.  
  71. REMOVE MESSAGES BY DATE
  72. =======================
  73.     This link will pop up a form that looks something like this:
  74.  
  75.   Checkbox   Date1   # of Messages  Message Numbers
  76.  
  77. You can click in the checkbox next to any dates of your choice and it 
  78. will remove all files that were posted on that date.  To see what files 
  79. are going to be removed and how many, you can look at the columns 
  80. labeled # of messages and message numbers.  If messages of an earlier 
  81. date happen to be at the head of a thread, they will be removed and the 
  82. next response down in the thread becomes the head of that thread.  It 
  83. will only remove messages with that date.
  84.  
  85. REMOVE MESSAGES BY AUTHOR
  86. =========================
  87.     This link will pop up a form very similar to that which the Remove 
  88. Message by Date link brought up.  Except instead of different dates, you 
  89. will see the names of authors of messages.  You can check the checkbox 
  90. next to an authors name to remove all postings that he or she posted to 
  91. your message board.
  92.  
  93. REMOVE MESSAGES BY SORTED NUMBER
  94. ================================
  95.     This link brings up a form identical to the plain Remove Messages form, 
  96. except that the postings are sorted from lowest number to highest 
  97. number.  This can be useful if you want to delete postings in the order 
  98. they were posted, but this is probably the l east useful remove function.
  99.  
  100. CHANGE PASSWORD
  101. ===============
  102.     This form will ask you to fill in your current username and password 
  103. and allow you to change your username and password to whatever you 
  104. like.  If you want to keep the username the same, you can simply not 
  105. fill in the 'New Username' part of the script.  When changing your 
  106. password, which I suggest you do right when you get WWWAdmin working, 
  107. you will need to type the new password two times in a row, just to make 
  108. sure you don't mis-type it.  Then, hit submit and if you input the 
  109. correct old username and password, you will be given a response that 
  110. tells you the new username and password.  Do not forget your password, 
  111. because it will be encrypted in the passwd.txt file, just like your Unix 
  112. login password.  You will need to re-download the wwwadmin tool...
  113. __________________________________________________________________________
  114.  
  115. FUTURE FEATURES
  116. ===============
  117.     I will continue to work on this admin tool and hopefully make it much 
  118. more powerful.  To do this, I need to know what you would like to be 
  119. able to do with it.  Some of my ideas include being able to edit any 
  120. post, and possibly moving them around in hierarchies.  Let me know what 
  121. else you would like to see this thing do.
  122. __________________________________________________________________________
  123.  
  124. HISTORY
  125.  
  126. Version 2.0 A2    - 11/25/95    - Released WWWAdmin Tool with WWWBoard 2.0
  127.                   ALPHA 2
  128. __________________________________________________________________________
  129. Matt Wright - mattw@xtc.net
  130.